From: Richard M. Stallman Date: Sat, 24 Jul 2004 21:35:32 +0000 (+0000) Subject: (rmail-mime-charset-pattern): Don't include semicolon in the charset value. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~21555 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=15ff19d50f3f53dac319532b98c99c9b1d3d0523;p=emacs.git (rmail-mime-charset-pattern): Don't include semicolon in the charset value. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index bdf04be519a..f8e31dfda04 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -484,7 +484,7 @@ the variable `rmail-mime-feature'.") ;;;###autoload (defvar rmail-mime-charset-pattern - "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\"]+\\)\"?" + "^content-type:[ ]*text/plain;[ \t\n]*charset=\"?\\([^ \t\n\";]+\\)\"?" "Regexp to match MIME-charset specification in a header of message. The first parenthesized expression should match the MIME-charset name.")